/* ============================================
   REDESIGN v2 - Inter, dot-grid, card system
   ============================================ */

/* ─── CUSTOM PROPERTIES ─── */
:root {
    --bg-page: #F9F9F9;
    --bg-surface: #FFFFFF;
    --bg-subtle: #F1F1F1;
    --bg-tinted: #EDF2FA;

    --brand-navy: #F7C900;
    --brand-sky: #F7C900;
    --brand-coral: #221D1E;

    --accent: var(--brand-navy);
    --accent-hover: #D4AB00;
    --accent-soft: rgba(247, 201, 0, 0.10);
    --accent-strong: rgba(247, 201, 0, 0.16);

    --text: #111111;
    --text-muted: #444444;
    --text-soft: #666666;
    --text-on-accent: #221D1E;

    --success: #168A4D;
    --success-soft: rgba(22, 138, 77, 0.12);

    --danger: var(--brand-coral);

    --border: rgba(17, 17, 17, 0.08);
    --border-strong: rgba(17, 17, 17, 0.14);

    --shadow-card: 0 1px 2px rgba(34, 29, 30, 0.05), 0 16px 36px rgba(34, 29, 30, 0.10);
    --shadow-pop: 0 18px 48px rgba(34, 29, 30, 0.18);

    --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

    --fs-12: 0.75rem;
    --fs-13: 0.8125rem;
    --fs-14: 0.875rem;
    --fs-15: 0.9375rem;
    --fs-17: 1.0625rem;
    --fs-20: 1.25rem;
    --fs-24: 1.5rem;
    --fs-30: 1.875rem;
    --fs-36: 2.25rem;

    --sp-1: 4px;
    --sp-2: 8px;
    --sp-3: 12px;
    --sp-4: 16px;
    --sp-5: 20px;
    --sp-6: 24px;
    --sp-8: 32px;
    --sp-10: 40px;
    --sp-12: 48px;
    --sp-16: 64px;
    --sp-20: 80px;

    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-full: 9999px;

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── RESET / BASE ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-15);
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg-page);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: -14px;
    z-index: -2;
    background: url("bg.webp") center / cover no-repeat;
    filter: blur(5px);
    transform: scale(1.03);
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background: rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font: inherit;
    cursor: pointer;
    border: 0;
    background: transparent;
    color: inherit;
}

input,
textarea {
    font: inherit;
    color: inherit;
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}

.hidden {
    display: none !important;
}

/* ─── LAYOUT UTILITIES ─── */
.container {
    width: 100%;
    max-width: 920px;
    margin-inline: auto;
    padding-inline: var(--sp-6);
}

.card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-card);
}

/* ─── BUTTONS ─── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: 14px 28px;
    background: var(--accent);
    color: var(--text-on-accent);
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 0;
    border-radius: var(--r-md);
    border: 0;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.12s ease;
    width: fit-content;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn-primary:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: 14px 28px;
    background: transparent;
    color: var(--text);
    font-size: var(--fs-15);
    font-weight: 600;
    border: 1.5px solid var(--border-strong);
    border-radius: var(--r-md);
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease;
}

.btn-secondary:hover {
    background: var(--bg-subtle);
    border-color: var(--text);
}

/* ─── FORMS ─── */
textarea,
input[type="text"],
input[type="email"] {
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: var(--fs-15);
    background: var(--bg-surface);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-soft);
}

textarea::placeholder,
input::placeholder {
    color: var(--text-soft);
}

/* ─── NOTICE BAR ─── */
.notice-bar {
    background: var(--brand-coral);
    border-bottom: 1px solid var(--border);
    padding: 10px var(--sp-6);
    text-align: center;
    font-size: var(--fs-13);
    color: #FFFFFF;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
}

.notice-bar i {
    color: #F7C900;
    font-size: 12px;
}

.notice-short {
    display: none;
}

/* ─── SITE HEADER ─── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #FFFFFF;
    padding: 14px var(--sp-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 920px;
    margin: 0 auto;
    border-bottom-left-radius: var(--r-lg);
    border-bottom-right-radius: var(--r-lg);
}

.site-logo {
    width: auto;
    height: 78px;
}

.header-timer {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

.timer-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text-soft);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--danger);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 2s ease infinite;
}

.flipTimer {
    display: flex;
    align-items: center;
    gap: 2px;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.timer-unit span {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 22px;
    color: var(--text);
}

.timer-unit small {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-soft);
    letter-spacing: 0.08em;
    margin-top: 2px;
}

.timer-sep {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-soft);
    margin: 0 1px;
    align-self: flex-start;
    margin-top: 2px;
}

/* ─── HERO ─── */
.hero {
    max-width: 920px;
    margin: var(--sp-4) auto var(--sp-6);
    padding: var(--sp-6) var(--sp-6);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
    align-items: center;
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-card);
}

.hero-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-media::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgb(255, 225, 0) 0%, rgba(69, 69, 69, 0.1) 42%, transparent 70%);
}

.hero-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 260px;
    animation: float 3.5s ease-in-out infinite;
}

.hero-body {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}

.hero-eyebrow {
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    color: #221D1E;
}

.hero-title {
    font-family: var(--font-body);
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-discount-tag {
    display: inline-flex;
    align-items: center;
    background: #221D1E;
    color: #FFCF00;
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 900;
    letter-spacing: 0.02em;
    padding: 4px 14px 4px 10px;
    border-radius: 6px;
    width: fit-content;
}

.hero-product-name {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(14px, 2vw, 25px);
    font-weight: 900;
    display: inline-block;
    color: #221D1E;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    border-bottom: 3px solid #FFCF00;
    padding-bottom: 2px;
}

.hero-desc {
    font-size: var(--fs-15);
    line-height: 1.6;
    color: var(--text-muted);
}

.hero-desc b {
    font-weight: 800;
}

.hero-desc--secondary {
    font-size: var(--fs-14);
    line-height: 1.6;
    color: var(--text-muted);
}

.hero-copy-panel {
    display: grid;
    gap: 4px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: #221D1E;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-copy-panel p {
    font-size: var(--fs-14);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.hero-copy-panel b {
    color: #FFCF00;
    font-weight: 800;
}

.live-code-card {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    width: fit-content;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.live-code-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text-soft);
    text-transform: uppercase;
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    flex-shrink: 0;
    animation: live-pulse 1.5s infinite;
}

.live-code-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.live-code-count {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 16px;
    color: #221D1E;
    background: #FFCF00;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 10px rgba(255, 207, 0, 0.4);
}

.live-code-count.bump {
    transform: scale(1.2);
}

.live-code-unit small {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-soft);
    letter-spacing: 0.08em;
    margin-top: 2px;
    text-transform: uppercase;
}

.live-code-label,
.live-code-lock {
    display: none;
}

.hero-meta {
    background: var(--accent-soft);
    border-radius: var(--r-md);
    padding: 12px var(--sp-4);
    display: grid;
    gap: 6px;
}

.hero-meta-line {
    font-size: var(--fs-13);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}

.hero-meta-line i {
    color: var(--accent);
    font-size: 12px;
    flex-shrink: 0;
}

.hero-meta-line b {
    color: var(--text);
}

.hero-cta-row {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    align-items: stretch;
    margin-top: 1.2rem;
}

.btn-primary--hero {
    width: 100%;
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-primary--hero::after {
    content: '';
    position: absolute;
    top: -80%;
    left: -200%;
    width: 150%;
    height: 500%;
    opacity: 0;
    transform: rotate(-10deg);
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.13) 77%,
            rgba(255, 255, 255, 0.5) 92%,
            rgba(255, 255, 255, 1) 92%,
            rgba(255, 255, 255, 0) 100%);
    animation: btn-shine 3s ease-in-out infinite;
}

.hero-reassurance-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-reassurance {
    font-size: var(--fs-12);
    color: var(--text-soft);
}

.accent-text {
    color: var(--accent) !important;
}

/* ─── SURVEY ─── */
.survey-section {
    padding: var(--sp-16) 0;
}

.survey-card {
    max-width: 920px;
    margin-inline: auto;
    padding: var(--sp-8);
    background: #FFFFFF;
}

.survey-inner {
    width: 100%;
}

.survey-progress {
    margin-bottom: var(--sp-10);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.q-counter {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #111111;
}

.p-counter {
    font-size: var(--fs-12);
    color: var(--text-soft);
    font-weight: 500;
}

.progress-label {
    color: #008000;
    font-weight: 600;
    font-size: var(--fs-12);
}

.progress-track {
    height: 6px;
    background: var(--bg-subtle);
    border-radius: 999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 999px;
    transition: width 400ms var(--ease-out);
}

.question-text {
    font-family: var(--font-body);
    font-size: clamp(20px, 3.2vw, 26px);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
    margin-bottom: var(--sp-6);
}

.answers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.answer-btn {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding: 14px var(--sp-4);
    background: var(--brand-navy);
    border: 0;
    border-radius: var(--r-md);
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    text-align: left;
    width: 100%;
    opacity: 0;
    transform: translateY(16px);
    animation: reveal-up 0.24s var(--ease-out) both;
}

.answers-grid .answer-btn:nth-child(1) {
    animation-delay: 0s;
}

.answers-grid .answer-btn:nth-child(2) {
    animation-delay: 0.05s;
}

.answers-grid .answer-btn:nth-child(3) {
    animation-delay: 0.10s;
}

.answers-grid .answer-btn:nth-child(4) {
    animation-delay: 0.15s;
}

.answer-btn:hover {
    background: var(--brand-sky);
    filter: brightness(1.04);
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(8, 37, 134, 0.18);
}

.answer-btn--selected {
    background: var(--brand-sky) !important;
    filter: brightness(0.95);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.70), 0 12px 22px rgba(8, 37, 134, 0.18);
}

.answer-btn-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #221D1E;
    color: #F7C900;
    font-size: var(--fs-12);
    font-weight: 600;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

.answer-btn--selected .answer-btn-letter {
    background: #F7C900 !important;
    color: #221D1E !important;
}

.answer-btn-text {
    font-size: var(--fs-14);
    color: #221D1E;
    font-weight: 700;
    line-height: 1.4;
}

.survey-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-soft);
    margin-top: var(--sp-10);
}

/* ─── VERIFICATION ─── */
.verification-section {
    padding: var(--sp-20) 0;
}

.verif-inner {
    max-width: 920px;
    margin: 0 auto;
    padding: var(--sp-10) var(--sp-8);
    text-align: center;
    transition: background 0.4s ease;
    background: #fff;
    border: 1px solid rgba(8, 37, 134, 0.12);
    border-bottom: 8px solid var(--brand-navy);
    border-radius: var(--r-md);
    box-shadow: 0 18px 48px rgba(8, 37, 134, 0.18);
}

.verif-title {
    font-family: var(--font-body);
    font-size: clamp(18px, 3.2vw, 24px);
    font-weight: 800;
    color: #222243;
    margin-bottom: var(--sp-5);
    line-height: 1.3;
}

.verif-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    height: 60px;
    margin: 20px auto 30px;
}

.verif-loader span {
    width: 10px;
    height: 10px;
    background: #F7C900;
    border-radius: 50%;
    animation: verif-pulse 0.7s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
    box-shadow: 0 0 15px rgba(247, 201, 0, 0.3);
}

.verif-loader span:nth-child(2) {
    animation-delay: 0.2s;
}

.verif-loader span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes verif-pulse {
    from {
        transform: scale(0.8);
        opacity: 0.4;
    }

    to {
        transform: scale(1.3);
        opacity: 1;
        box-shadow: 0 0 25px rgba(247, 201, 0, 0.6);
    }
}

.verif-copy-steps {
    display: grid;
    gap: 8px;
    justify-items: center;
    min-height: 92px;
}

.verif-ring-wrap {
    display: none;
}

.verif-ring-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: var(--bg-subtle);
    stroke-width: 4;
}

.ring-fill {
    fill: none;
    stroke: var(--accent);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 339.29;
    stroke-dashoffset: 339.29;
    transition: stroke-dashoffset 0.4s var(--ease);
}

.verif-ring-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.verif-dots {
    display: flex;
    gap: 6px;
}

.verif-dots span {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: dot-bounce 1.4s ease infinite;
}

.verif-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.verif-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

.verif-check {
    font-size: 28px;
    color: var(--success);
}

.verif-circle.success .verif-check {
    animation: scale-in 0.4s var(--ease-spring) both;
}

.verif-step-label {
    font-size: var(--fs-20);
    font-weight: 800;
    color: #222243;
    margin-bottom: 0;
    min-height: 24px;
}

.verif-step-done {
    font-size: var(--fs-17);
    font-weight: 800;
    color: var(--success);
    min-height: 22px;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.verif-step-done.done {
    opacity: 1;
}

.verif-available {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 6px var(--sp-4);
    background: rgba(22, 138, 77, 0.12);
    color: var(--success);
    font-size: var(--fs-13);
    font-weight: 600;
    border-radius: var(--r-full);
}

.verif-bar-wrap {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    margin-top: var(--sp-3);
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.verif-bar {
    flex: 1;
    height: 6px;
    background: var(--bg-subtle);
    border-radius: 2px;
    overflow: hidden;
}

.verif-bar-fill {
    height: 100%;
    background: #FFCF00;
    border-radius: 2px;
    width: var(--pct, 0%);
    transition: width 0.3s var(--ease);
}

.verif-percent {
    font-size: var(--fs-12);
    font-weight: 600;
    color: var(--text-soft);
    min-width: 36px;
}

.flash-green {
    animation: flash-success 0.4s var(--ease) forwards;
}

/* ─── RESULTS ─── */
.results-section {
    padding: var(--sp-12) 0 0;
}

.result-badge-wrap {
    text-align: center;
    margin-bottom: var(--sp-8);
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    padding: var(--sp-6);
    background: #fff;
    border: 1px solid rgba(8, 37, 134, 0.10);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-card);
}

.result-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: 8px var(--sp-5);
    background: var(--success-soft);
    color: var(--success);
    font-size: var(--fs-13);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--r-full);
}

.result-product {
    max-width: 920px;
    margin: 0 auto;
    padding-inline: 0;
}

.result-subtitle {
    font-size: var(--fs-15);
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: var(--sp-4);
    max-width: 640px;
    margin-inline: auto;
    padding-inline: var(--sp-6);
}

.result-subtitle-note {
    display: block;
    margin-top: var(--sp-2);
    font-size: var(--fs-13);
    color: var(--text-soft);
    font-style: italic;
}

.result-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-strong);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: grid;
    grid-template-columns: 380px 1fr;
    align-items: center;
}

.result-card-img-col {
    background: none;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    border-right: 1px solid var(--border);
    overflow: hidden;
}

.result-card-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.result-details {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    padding: var(--sp-6) var(--sp-8) var(--sp-6) var(--sp-4);
}

.result-title {
    font-family: var(--font-body);
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--text);
}

.result-title span {
    display: inline;
    color: var(--text);
    font-weight: 700;
}

.result-desc {
    font-size: var(--fs-14);
    color: var(--text-muted);
    line-height: 1.6;
}

.result-pricing {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.result-label {
    font-size: var(--fs-14);
    color: var(--text-muted);
    display: inline-block;
}

.result-old-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.old-price-label {
    font-size: var(--fs-14);
    color: var(--text-muted);
}

.old-price-val {
    font-size: var(--fs-15);
    color: var(--text-soft);
    text-decoration: line-through;
    font-weight: 600;
}

.discount-badge-blink {
    font-size: var(--fs-12);
    font-weight: 900;
    color: #FFFFFF;
    background: #D7263D;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    animation: discount-blink 0.6s infinite alternate ease-in-out;
}

@keyframes discount-blink {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0.8;
        transform: scale(1.08);
    }
}

.result-price-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-14);
    color: var(--text-muted);
}

.result-code {
    color: var(--text);
    font-weight: 800;
    letter-spacing: 0.04em;
}

.result-free-price {
    font-size: 26px;
    font-weight: 800;
    color: #1F7A4D;
    line-height: 1;
    display: inline-block;
    animation: price-pulse 1.8s ease-in-out infinite;
    transform-origin: left center;
}

.result-stock-line {
    font-size: var(--fs-14);
    color: var(--text-muted);
}

.result-stock-line .stock-num {
    font-weight: 700;
    color: var(--danger);
}

.result-shipping-label {
    font-size: var(--fs-15);
    font-weight: 700;
    color: #D7263D;
}

.btn-claim {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    width: 100%;
    padding: 16px var(--sp-6);
    background: var(--accent);
    color: var(--text-on-accent);
    font-size: var(--fs-15);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--r-md);
    border: 0;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.12s ease;
}

.btn-claim:hover {
    background: var(--accent-hover);
}

.btn-claim:active {
    transform: translateY(1px);
}

.btn-claim:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* ─── COMMENTS ─── */
.comments-wrap {
    max-width: 920px;
    margin: 0 auto;
    padding: 15px 0 var(--sp-16);
}

.section-heading {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
    letter-spacing: -0.01em;
}

.cmmtform {
    padding: var(--sp-6);
    margin-bottom: var(--sp-8);
}

.form-title {
    font-size: var(--fs-15);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 14px;
}

.form-title i {
    color: var(--accent);
    margin-right: 6px;
}

.cmmtform textarea {
    width: 100%;
    padding: 14px;
    background: var(--bg-page);
    border: 1px solid var(--border-strong);
    border-radius: var(--r-sm);
    font-size: var(--fs-14);
    color: var(--text);
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cmmtform textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-soft);
}

.cmmtform textarea::placeholder {
    color: var(--text-soft);
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--sp-3);
}

.upload-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--fs-13);
    padding: 12px 8px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
}

.upload-trigger:hover {
    color: var(--accent);
}

.btn-post {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px var(--sp-5);
    background: var(--accent);
    color: var(--text-on-accent);
    font-size: var(--fs-13);
    font-weight: 600;
    border-radius: var(--r-md);
    border: 0;
    cursor: pointer;
    transition: background 0.18s ease;
}

.btn-post:hover {
    background: var(--accent-hover);
}

.cmmtdiv {
    padding: var(--sp-5);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    background: var(--bg-surface);
    margin-bottom: var(--sp-3);
    opacity: 0;
    animation: reveal-up 0.24s var(--ease-out) both;
}

.cmmtdiv:nth-child(1) {
    animation-delay: 0s;
}

.cmmtdiv:nth-child(2) {
    animation-delay: 0.08s;
}

.cmmtdiv:nth-child(3) {
    animation-delay: 0.16s;
}

.cmmtdiv:nth-child(4) {
    animation-delay: 0.24s;
}

.cmmtdiv:nth-child(5) {
    animation-delay: 0.32s;
}

.cmmtdiv:nth-child(6) {
    animation-delay: 0.40s;
}

.cmmtdiv:nth-child(7) {
    animation-delay: 0.48s;
}

.cmmt-header-row {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    margin-bottom: 10px;
}

.cmmt-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.cmmt-avatar-anon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cmmt-header-info {
    flex: 1;
    min-width: 0;
}

.cmmt-name-row {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    flex-wrap: wrap;
}

.cmmt-name {
    font-weight: 600;
    font-size: var(--fs-14);
    color: var(--text);
}

.cmmt-winner-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--success);
    background: var(--success-soft);
    padding: 2px 8px;
    border-radius: var(--r-full);
}

.cmmt-stars {
    display: flex;
    gap: 2px;
    margin-top: 2px;
}

.cmmt-stars i {
    color: #E8B730;
    font-size: 11px;
}

.cmmt-city {
    display: block;
    font-size: 11px;
    color: var(--text-soft);
    margin-top: 1px;
}

.cmmt-city i {
    font-size: 10px;
    margin-right: 2px;
}

.cmmt-date {
    font-size: var(--fs-12);
    color: var(--text-soft);
    margin-left: auto;
    flex-shrink: 0;
}

.cmmt-text {
    font-size: var(--fs-15);
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.comment-evidence {
    margin-bottom: 10px;
}

.comment-evidence img {
    max-width: 140px;
    border-radius: var(--r-sm);
    border: 1px solid var(--border);
}

.cmmt-footer {
    display: flex;
    align-items: center;
}

.cmmt-likes {
    font-size: var(--fs-13);
    color: var(--text-soft);
    display: flex;
    align-items: center;
    gap: 4px;
}

.cmmt-likes i {
    color: #E86B6B;
    font-size: 12px;
}

.cmmt-dislikes {
    font-size: var(--fs-13);
    color: var(--text-soft);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: var(--sp-3);
}

.cmmt-dislikes i {
    color: var(--text-soft);
    font-size: 12px;
}

/* ─── FOOTER ─── */
.site-footer {
    background: #1d1d1d;
    border-top: 1px solid var(--border);
    padding: var(--sp-12) var(--sp-6);
    text-align: center;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: var(--sp-4);
    margin-bottom: var(--sp-6);
}

.footer-badges img {
    width: 48px;
    height: 48px;
    border-radius: var(--r-sm);
    opacity: 1;
}

.footer-copy {
    font-size: var(--fs-13);
    color: var(--text-soft);
    margin-bottom: var(--sp-2);
}

.footer-disclaimer {
    font-size: var(--fs-12);
    color: var(--text-soft);
    line-height: 1.65;
    max-width: 640px;
    margin: 0 auto var(--sp-4);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--sp-6);
}

.footer-link {
    font-size: var(--fs-12);
    color: var(--text-muted);
    cursor: pointer;
    padding: 10px 8px;
    display: inline-block;
    transition: color 0.2s ease;
    border: 0;
    background: transparent;
    font-family: inherit;
}

.footer-link:hover {
    color: var(--accent);
}

.footer-link:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ─── POPUP AND MODAL ─── */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: var(--sp-6);
    animation: fade-in 0.25s var(--ease) both;
}

.popup-content {
    background: var(--bg-surface);
    border-radius: var(--r-lg);
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: scale-in-soft 0.35s var(--ease-spring) both;
    box-shadow: var(--shadow-pop);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-soft);
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s ease, color 0.2s ease;
    border: 0;
    background: transparent;
    font-family: inherit;
}

.popup-close:hover {
    background: var(--bg-subtle);
    color: var(--text);
}

.popup-close:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.popup-header {
    padding: var(--sp-6) var(--sp-6) 0;
    text-align: center;
}

.popup-logo {
    width: auto;
    height: 48px;
    margin: 0 auto;
}

.popup-body {
    padding: var(--sp-5) var(--sp-6) var(--sp-6);
}

.popup-body h2 {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.popup-body p {
    font-size: var(--fs-14);
    line-height: 1.6;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: var(--sp-5);
}

.popup-steps {
    background: var(--bg-page);
    border-radius: var(--r-md);
    padding: var(--sp-5);
    margin-bottom: var(--sp-5);
}

.popup-steps h3 {
    font-size: var(--fs-14);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.popup-steps ol {
    counter-reset: step;
    list-style: none;
    padding-left: 0;
}

.popup-steps li {
    counter-increment: step;
    position: relative;
    padding-left: 40px;
    font-size: var(--fs-13);
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
}

.popup-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-12);
}

.popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: var(--text-on-accent);
    font-size: var(--fs-15);
    font-weight: 700;
    letter-spacing: 0;
    border-radius: var(--r-md);
    cursor: pointer;
    border: 0;
    font-family: inherit;
    transition: background 0.18s ease, transform 0.12s ease;
}

.popup-btn:hover {
    background: var(--accent-hover);
}

.popup-btn:active {
    transform: translateY(1px);
}

.popup-btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.legal-content {
    max-width: 560px;
}

.legal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-5) var(--sp-6);
    border-bottom: 1px solid var(--border);
}

.legal-header h2 {
    font-family: var(--font-body);
    font-size: var(--fs-20);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.legal-body {
    padding: var(--sp-6);
    font-size: var(--fs-13);
    line-height: 1.7;
    color: var(--text-muted);
}

.legal-body b {
    color: var(--text);
}

.legal-body ol {
    padding-left: 20px;
    margin-top: var(--sp-4);
}

.legal-body li {
    margin-bottom: var(--sp-4);
}

.legal-body ul {
    padding-left: 20px;
    margin-top: var(--sp-2);
}

.legal-date {
    font-size: var(--fs-12);
    color: var(--text-soft);
    margin-bottom: var(--sp-4);
}

/* ─── ANIMATIONS ─── */
@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

@keyframes live-pulse {
    0% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(22, 138, 77, 0.45);
        transform: scale(1);
    }

    70% {
        opacity: 0.55;
        box-shadow: 0 0 0 8px rgba(22, 138, 77, 0);
        transform: scale(1.18);
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(22, 138, 77, 0);
        transform: scale(1);
    }
}

@keyframes price-pulse {
    0% {
        transform: scale(1);
    }

    20% {
        transform: scale(1.18);
    }

    40% {
        transform: scale(0.96);
    }

    60% {
        transform: scale(1.12);
    }

    80% {
        transform: scale(0.98);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes stock-blink {

    0%,
    100% {
        opacity: 1;
    }

    45% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    95% {
        opacity: 0;
    }
}

@keyframes dot-bounce {

    0%,
    80%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    40% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

@keyframes scale-in {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes scale-in-soft {
    0% {
        transform: scale(0.92);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes flash-success {
    0% {
        background: #fff;
        box-shadow: 0 18px 48px rgba(8, 37, 134, 0.18);
    }

    30% {
        background: #fff;
        box-shadow: 0 18px 48px rgba(22, 138, 77, 0.22);
    }

    100% {
        background: #fff;
        box-shadow: 0 18px 48px rgba(8, 37, 134, 0.18);
    }
}

@keyframes reveal-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* ─── RESPONSIVE 768px ─── */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        gap: var(--sp-8);
        padding: var(--sp-10) var(--sp-5) var(--sp-12);
    }

    .hero-media {
        order: -1;
    }

    .hero-img {
        max-width: 240px;
        margin: 0 auto;
    }

    .hero-body {
        align-items: flex-start;
    }

    .hero-cta-row {
        width: 100%;
    }

    .live-code-card {
        width: auto;
    }

    .btn-primary {
        width: 100%;
        padding: 16px var(--sp-8);
    }

    .result-card {
        grid-template-columns: 1fr;
    }

    .result-card-img-col {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 0;
        min-height: 240px;
    }

    .result-card-img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
        object-position: center;
    }

    .answers-grid {
        grid-template-columns: 1fr;
    }

    .site-header {
        padding: 12px var(--sp-4);
    }

    .site-logo {
        height: 40px;
    }

    .timer-label {
        font-size: 10px;
    }

    .notice-bar {
        padding: 8px var(--sp-4);
        font-size: 12px;
    }

    .notice-full {
        display: none;
    }

    .notice-short {
        display: inline;
    }

    .survey-card {
        padding: var(--sp-5);
        border-radius: var(--r-lg);
    }

    .container {
        padding-inline: var(--sp-5);
    }
}

/* ─── RESPONSIVE 480px (compact mobile) ─── */
@media (max-width: 480px) {
    .site-header {
        flex-direction: row;
        justify-content: space-between;
        gap: var(--sp-2);
        padding: 12px var(--sp-4);
    }

    .site-logo {
        height: 36px;
    }

    .hero {
        padding: var(--sp-8) var(--sp-4) var(--sp-10);
    }

    .hero-img {
        max-width: 200px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-desc {
        font-size: var(--fs-15);
    }

    .survey-section {
        padding: var(--sp-8) 0;
    }

    .survey-card {
        padding: var(--sp-4);
    }

    .container {
        padding-inline: var(--sp-4);
    }

    .verification-section {
        padding: var(--sp-12) 0;
    }

    .verif-inner {
        padding: var(--sp-8) var(--sp-4);
    }

    .verif-ring-wrap {
        display: none;
    }

    .verif-step-label {
        font-size: var(--fs-17);
    }

    .results-section {
        padding: var(--sp-8) 0 0;
    }

    .result-card {
        padding: var(--sp-4);
        gap: var(--sp-4);
    }

    .result-card-img-col {
        padding: var(--sp-2);
        background: #f8f9fa;
        border-radius: var(--r-md);
    }

    .result-pricing {
        gap: var(--sp-3);
    }

    .result-old-price-row {
        flex-wrap: wrap;
        gap: 6px;
    }

    .result-price-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 14px;
    }

    .result-code {
        font-size: 18px;
    }

    .result-product {
        padding-inline: var(--sp-4);
    }

    .result-badge-wrap {
        padding-inline: var(--sp-4);
    }

    /* Comment Header Mobile Fix */
    .cmmt-header-row {
        align-items: flex-start;
        position: relative;
    }

    .cmmt-header-info {
        flex: 1;
    }

    .cmmt-name-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .cmmt-date {
        position: absolute;
        top: 0;
        right: 0;
        font-size: 10px;
    }

    .cmmt-winner-badge {
        font-size: 10px;
        padding: 1px 6px;
    }

    .result-thumbs {
        gap: 6px;
    }

    .result-thumb {
        padding: 6px;
    }

    .question-text {
        font-size: 18px;
    }

    .comments-wrap {
        padding: 15px var(--sp-4) var(--sp-12);
    }

    .cmmtform {
        padding: var(--sp-4);
    }

    .site-footer {
        padding: var(--sp-10) var(--sp-4);
    }

    .timer-label {
        display: none;
    }

    .fixed-bottom-bar {
        padding: 6px var(--sp-4);
        font-size: var(--fs-13);
        gap: var(--sp-2);
    }

    .bottom-timer {
        font-size: var(--fs-14);
    }

    .bottom-time-block {
        font-size: var(--fs-14);
        padding: 2px 4px;
        min-width: 24px;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

/* ─── FIXED BOTTOM BAR ─── */
body {
    padding-bottom: 48px;
}

.fixed-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--brand-coral);
    color: #fff;
    text-align: center;
    padding: 8px var(--sp-6);
    font-size: var(--fs-15);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-3);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    border-top: 2px solid var(--brand-navy);
}

.bottom-timer {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: var(--fs-17);
    font-weight: 700;
}

.bottom-time-block {
    background: #F7C900;
    color: #221D1E;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 800;
    font-size: var(--fs-17);
    min-width: 28px;
    text-align: center;
    display: inline-block;
}

@keyframes btn-shine {
    10% {
        opacity: 1;
        top: -30%;
        left: -200%;
    }

    100% {
        opacity: 0;
        top: -30%;
        left: 100%;
    }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}